home *** CD-ROM | disk | FTP | other *** search
/ Wildcat Gold - The Optical BBS / Wildcat Gold - The Optical BBS (The Golden ROM Series)(Volume 4 Number 1)(The Digital Publishing Company)(1992).ISO / sdn / kwrite.sdn / KWCOPY.BAT < prev    next >
DOS Batch File  |  1991-09-01  |  3KB  |  64 lines

  1. echo off
  2. rem ... This is the batch file KWCOPY.BAT
  3. verify on                                  
  4. if %1x==x goto explain                     
  5. cls
  6. echo ┌───────────────────────────────────────────────────────────┐  
  7. echo │           Installation of KWIKWRITE Version 4.00          │
  8. echo │                    on FLOPPY DISK %1                      │
  9. echo └───────────────────────────────────────────────────────────┘
  10. echo ┌───────────────────────────────────────────────────────────┐  
  11. echo │ If you are not certain you wish to continue, press        │  
  12. echo │ CTRL-BREAK. If you are certain you wish to continue, then │  
  13. echo └───────────────────────────────────────────────────────────┘  
  14. pause
  15. copy *.exe %1
  16. copy *.hlp %1
  17. copy kwprint.dat %1
  18. copy KWTYPE %1
  19. Copy kwtest %1
  20. copy kw-short.doc %1
  21. copy kworder %1
  22. copy kw*.txt %1
  23. copy *.bat %1
  24. cls
  25. echo ┌───────────────────────────────────────────────────────┐  
  26. echo │            COPY OF KWIKWRITE IS COMPLETE!             │  
  27. echo │                                                       │
  28. echo │ Read the file KWLATE.DOC for latest news and info.    │  
  29. echo │                                                       │  
  30. echo │ To use KwikWrite on a Floppy Disk Based Machine,      │
  31. echo │ place KwikWrite Program disk in the A: drive. Run     │
  32. echo │ the KWSETUP program to tell KwikWrite where you want  │
  33. echo │ to store your documents.                              │
  34. echo │                                                       │  
  35. echo │ For example, on a 2-floppy system, you should store   │
  36. echo │ documents on the B: drive. For a one floppy system,   │
  37. echo │ you should store documents on the A: drive.           │
  38. echo │                                                       │  
  39. echo │ IMPORTANT - IF YOU ARE USING TWO FLOPPY DISKS, place  │
  40. echo │ tutorial files on the disk where you have chosen to   │
  41. echo │ store documents. Use the command KWDOC d: to copy     │
  42. echo │ these files. For example, in a two floppy system,     │
  43. echo │ where the program is in A: and your document disk is  │
  44. echo │ in B:, enter the following command at the A: prompt.  │
  45. echo │                                                       │  
  46. echo │ KWDOCS B:                                             │
  47. echo └───────────────────────────────────────────────────────┘
  48. goto end
  49. :Explain                                                        
  50. echo ┌───────────────────────────────────────────────────────┐
  51. echo │   The format of this command is:                      │  
  52. echo │                                                       │  
  53. echo │   KWCOPY d:                                           │
  54. echo │                                                       │  
  55. echo │   where d: is the name of the disk drive on which you │  
  56. echo │   want the program installed.  For example, if you    │  
  57. echo │   have the KWIKWRITE disk in the A: drive and want    │
  58. echo │   to install to the disk in the B: drive, the command │
  59. echo │   would look something like this . . .                │  
  60. echo │                                                       │
  61. echo │   "A>KWCOPY B:"                                       │
  62. echo └───────────────────────────────────────────────────────┘  
  63. :End                                                            
  64.